Go: クロスコンパイル
#Go
Go
言語の
クロスコンパイル
手順
Ref:
https://qiita.com/httpd443/items/0c055ca3eb4b26cac4ff
Ref:
https://qiita.com/masaru_b_cl/items/b7fc6a17ee2390c010a1
プラットフォームの一覧
go tool dist list
で確認
クロスコンパイルする
code:sh
GOOS=windows GOARCH=amd64 go build -o out.exe main.go
code:bat
@echo off
setlocal
set GOOS=linux
set GOARCH=amd64
go build -o out main.go
https://stackoverflow.com/questions/62204478/golang-cross-compile-undefined-errors